home *** CD-ROM | disk | FTP | other *** search
Makefile | 1999-08-28 | 337 b | 21 lines |
- # $Id: makefile.lnx,v 1.2 1999/04/20 22:34:33 tommya Exp $
- #
- # makefile for a2html, NO-COPYRIGHT TOMMY ANDERSEN 1997,98,99
- # Compiler: egcs 1.1.2
- # GNU make 3.77
-
- CC = gcc
- CFLAGS = -O2 -fomit-frame-pointer
- LDFLAGS = -s
-
- all: a2html
-
- OBJS = a2html.o
-
- a2html : $(OBJS)
- $(OBJS) : makefile.lnx
-
- .PHONY : clean
- clean:
- -$(RM) a2html $(OBJS)
-